/**
*在Position属性值为absolute的同时，
*如果有一级父对象（无论是父对象还是祖父对象，或者再高的辈分，一样）
*的Position属性值为Relative时，则上述的相对浏览器窗口定位将会变成相对父对象定位，
*这对精确定位是很有帮助的。
*/
*{
    margin: 0;
    padding: 0;
	list-style-type:none;
}
/*nav导航盒子*/
div.nav{
    width: 100%;
    height:45px;
    line-height: 45px;
    text-align: center;
    font-size: 12px;
    position: relative;
    background:#404040;
	z-index:999;
}
div.nav1{ width:1200px; height:45px;position: relative; margin:0 auto;}
/*nav-main*/
ul.nav-main{
    width: 1200px;
    height:45px;
    list-style-type: none;
	margin:0 auto;
	position: relative;
}
ul.nav-main span{
    display: inline-block;
    margin-left: 6px;
    width: 6px;
    height: 5px;
    background: url('../img/down-icon.png') no-repeat;
}
ul.nav-main:hover span{
    display: inline-block;
    margin-left: 6px;
    width: 6px;
    height: 5px;
    background: url('../img/down-icon2.png') no-repeat;
}
/*图标向上旋转*/
.hover-up{
    transition-duration: .5s;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
/*图标向下旋转*/
.hover-down{
    transition-duration: .5s;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}
/*导航条设置*/
ul.nav-main>li{
    width: 170px;
    height: 100%;
    display: block;
    float: left; 
	color:#fff; 
	line-height:45px;
    font-family:"微软雅黑";
	font-weight:bold;
	font-size:15px;
    cursor: pointer;
}
ul.nav-main>li:hover{ color:#fba400;}
ul.nav-main>li:hover a{ color:#fba400;}
ul.nav-main>li a{
	color:#fff; 
}
ul.nav-main>li a:hover{
    color:#fba400;
}
/*隐藏盒子设置*/
div.hidden-box{
    width: 138px;
    border-top: 0;
    position: absolute;
    display:none;
	background:#fba400;
    top: 45px;
	filter:alpha(opacity=90);  
	-moz-opacity:0.9;  
	-khtml-opacity: 0.9;  
	opacity: 0.9;  
}
.hidden-box>ul{
    list-style-type: none;
    color: #643519;
	padding-top:17px;
	padding-bottom:30px;
    cursor: pointer;
}
.hidden-box>ul li{
	height:41px;
	line-height:41px;
	font-size:14px;
	font-family:"微软雅黑";  
}
.hidden-box>ul li a{color: #323131;}
.hidden-box li:hover a{
    color: #fff;
}
/*隐藏盒子位置设置*/
.hidden-loc-index{
    left: 180px;
}
.hidden-loc-us{
    left: 347px;
}
.hidden-loc-info{
    left: 363px;
}
.hidden-loc-honor{
    left: 693px;
}
.box04{
	left:485px;
}